home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / MacOS 8 Resources / Developer Tools / Mac OS 8 Interfaces & Libraries / Interfaces / IDLIncludes / NotifierModule.idl < prev    next >
Text File  |  1996-05-01  |  1KB  |  53 lines

  1. /*
  2.      File:        NotifierModule.idl
  3.  
  4.      Contains:    Notification Manager extension module SOM base class
  5.  
  6.      Version:    Technology:    System 8.0
  7.                  Release:    Universal Interfaces 3.0d3 on Copland DR1
  8.  
  9.      Copyright:    © 1995-1996 by Apple Computer, Inc.  All rights reserved.
  10.  
  11.      Bugs?:        If you find a problem with this file, send the file and version
  12.                  information (from above) and the problem description to:
  13.  
  14.                      Internet:    apple.bugs@applelink.apple.com
  15.                      AppleLink:    APPLE.BUGS
  16. */
  17.  
  18.  
  19. #include <somobj.idl>
  20. #include <somcls.idl>
  21.  
  22. #include <Types.idl>
  23. #include <Quickdraw.idl>
  24. #include <Events.idl>
  25. #include <Notification.idl>
  26.  
  27.  
  28. interface NotifierModule:    SOMObject
  29. {
  30.     OSStatus            InitializeModule();
  31.     void                DisposeModule();
  32.     
  33.     OSStatus            AddNotificationRequest(in NotificationRef theNotification);
  34.     OSStatus            RemoveNotificationRequest(in NotificationRef theNotification);
  35.     boolean                CheckCompletedRequest(in NotificationRef theNotification);
  36.     
  37.     void                Idle();
  38.  
  39.     implementation 
  40.     {
  41.         passthru C_h = "#include <Notification.h>";
  42.         passthru C_xh = "#include <Notification.h>";
  43.         
  44.         releaseorder    :         InitializeModule,
  45.                                 DisposeModule,
  46.                                 AddNotificationRequest,
  47.                                 RemoveNotificationRequest,
  48.                                 CheckCompletedRequest,
  49.                                 Idle;
  50.     };
  51.  
  52. };
  53.